home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / tsipp / tsipp.lha / tsipp3.0a / Config.mk < prev    next >
Encoding:
Makefile  |  1992-11-02  |  3.4 KB  |  87 lines

  1. #==============================================================================
  2. #                                 Config.mk
  3. #------------------------------------------------------------------------------
  4. # Configuration file for Tcl sipp.  Edit the following variables to specify
  5. # the location of required packages and other attribbutes.   
  6. #
  7. # IMPORTANT NOTE:
  8. #     All paths to include files must include the -I options.  All paths 
  9. # should either be absoulte or relative to the src directory below the
  10. # directory containing this file.
  11. #------------------------------------------------------------------------------
  12.  
  13. #------------------------------------------------------------------------------
  14. # Compiler options (-g, -O)
  15. #
  16. #CCOPT=-g
  17. CCOPT=-O
  18.  
  19.  
  20. #------------------------------------------------------------------------------
  21. # Stripping - Set to the command `stip' to strip, `true' to not strip.
  22. #
  23. #STRIP=true
  24. STRIP=strip
  25.  
  26. #------------------------------------------------------------------------------
  27. # Other libraries that might be needed (-lm almost always is).
  28. #
  29. LDFLAGS=-lm -lmalloc -lPW -lc_s
  30.  
  31. #------------------------------------------------------------------------------
  32. # Alloca flag as specified in the SIPP Makefile.
  33. #ALLOCA = -DHAVE_NO_ALLOCA
  34. ALLOCA = -DHAVE_NO_ALLOCA_H
  35.  
  36. #------------------------------------------------------------------------------
  37. # Location of your standard include files.  This is needed because the Tcl
  38. # source directory has its own copy of files like string.h.
  39. #
  40. STDINCL=-I/usr/include
  41.  
  42. #------------------------------------------------------------------------------
  43. # Location of your Tcl include files (tcl.h and tclInt.h).
  44. #
  45. TCLINCL=-I/usr/local/include
  46.  
  47. #------------------------------------------------------------------------------
  48. # Location of your Extended Tcl (TclX) include file (tclExtend.h) and the path
  49. # to your Extended Tcl library (includes Tcl library).
  50. #
  51. TCLXINCL=-I/usr/local/include
  52. TCLXLIB=/usr/local/lib/libtcl.a
  53.  
  54. #------------------------------------------------------------------------------
  55. # Location of your SIPP include files and library.
  56. #
  57. SIPPINCL=-I../../sipp-3.0/libsipp
  58. SIPPLIB=../../sipp-3.0/libsipp/libsipp.a
  59.  
  60. #------------------------------------------------------------------------------
  61. # Location of your Utah Raster Toolkit (URT include files and library).  If you
  62. # do not have the URT, don't define URTINCL and URTLIB, instead define URTDEF
  63. # as -DTSIPP_NO_RLE
  64. #
  65. #URTDEF=-DTSIPP_NO_RLE
  66. URTINCL=-I/u/markd/graphics/include
  67. URTLIB=/u/markd/graphics/lib/librle.a
  68.  
  69.  
  70. #------------------------------------------------------------------------------
  71. # Arguments to use in when generating the demo pictures.  The following
  72. # arguments may be specified for this flag:
  73. #
  74. #     o -mode rmode - The rendering mode.  The value of rmode is one of PHONG,
  75. #        GOURAUD, FLAG or LINE.  Default is PHONG.
  76. #     o -oversample factor - The oversampling factor.  The default is 2 for
  77. #        most images, a couple are 3.  You might want to set this to 1 to speed
  78. #        up the rendering.
  79. #     o -size isize - The size of the image to render.  The result will be an
  80. #        image isize X isize pixels.  The default is 256 pixels.
  81. #     o -ppm - Force PPM (or PBM for LINE mode) format images to be rendered.
  82. #        The default is to render RLE images if Tcl-SIPP was built with the 
  83. #        Utah Raster Toolkit RLE library and a PPM images if RLE is not
  84. #        available.
  85. #        
  86. DEMOARGS=
  87.